home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / bbs_door / pray101.zip / PRAYER.DOC < prev    next >
Text File  |  1996-02-17  |  7KB  |  163 lines

  1.   PRAYER LINE Version 1.01                                      Feb 17,1996
  2.   Christian One Liner
  3.   Ken Kirkley -  Glory Bound BBS - 864-592-5208
  4.   Mail Networks: FIDONet 1:3652/5; FMLYNet 8:8301/3
  5.   Magic Name for FREQ'ing - PRAYER
  6.   
  7.   -------------------------------------------------------------------------
  8.  
  9.   SYSTEM REQUIREMENTS
  10.  
  11.   PRAYER LINE has been written in Turbo Pascal and compiled with Assembly 
  12.   Language serial input/output routines for maximum speed.  It fully 
  13.   supports high speed modems: 16550 FIFO buffering and locked serial ports.
  14.   This BBS door game is DesqView, Windows, and OS/2 aware. It will support
  15.   all of the most popular door data file formats: TriBBS, PCBoard, 
  16.   GAP (DOOR.SYS), Spitfire, WildCat!, RBBS, and WWIV.  Thus, a door that 
  17.   is built around compatability with a wide range of BBS software.
  18.  
  19. **In order to use the DOWNLOAD feature of PRAYER LINE, be sure you have
  20.   a copy of DSZ.EXE in your PATH statement or within the directory you
  21.   run PRAYER LINE from.
  22.  
  23.   -------------------------------------------------------------------------
  24.         
  25.   PROGRAM USAGE
  26.  
  27.   [1] UNZIP the file into your BBS door directory of your choice.  READ 
  28.       the DOC files carefully!
  29.  
  30.   [2] EDIT the enclosed config file (PRAYER.CFG) or create your own 
  31.       config file using the example below. This is how I run PRAYER LINE 
  32.       with ProBoard BBS.
  33.  
  34.       GAP
  35.       C:\PB\NODE1
  36.       Glory Bound BBS
  37.       Ken Kirkley
  38.       38400
  39.  
  40.   [3] This BBS door game is run by entering a command line similar to the 
  41.       following:
  42.  
  43.       PRAYER PRAYER.CFG    (door config)
  44.  
  45.       In the  above command line, "PRAYER" is the name of the door's EXE 
  46.       file and the "PRAYER.CFG" parameter is the name of the door's 
  47.       configuration file.  The configuration file can have any name the 
  48.       sysop chooses, but it must reside in the same directory as the door.
  49.       The configuration file is an ASCII text file with the following 
  50.       format:
  51.  
  52.       Line 1:   Door data file type.
  53.       Line 2:   Path to the door data file(s).
  54.       Line 3:   BBS name.
  55.       Line 4:   Sysop's name.
  56.       Line 5:   Locked baud rate.
  57.  
  58.       Following is an example of the BAT file I use to run PRAYER LINE
  59.       under ProBoard BBS software.
  60.       
  61.       :PRAYER
  62.        cd\doors\prayer
  63.        prayer prayer%2.cfg
  64.        cd\pb\node%2
  65.        GOTO END
  66.                         
  67.       
  68.       As illustrated above, the door's data file type is specified in 
  69.       line 1 and can be PCB for PCBoard, GAP for GAP (DOOR.SYS), SF for 
  70.       Spitfire, RBBS for RBBS, WC for WildCat!, TRIBBS for TriBBS, or WWIV
  71.       for WWIV. The locked baud rate is specified in line 5.  If the sysop
  72.       doesn't lock his serial port, he must specify 0 for the locked baud
  73.       rate.  
  74.       NOTE: Although many door formats do pass the locked baud rate in the
  75.       door data files, some older formats such as RBBS do not.  For 
  76.       conformity, PRAYER LINE requires that you specify the locked baud 
  77.       rate in line 5 and ignores any value passed in the door data files.
  78.       Nonstandard IRQs can be used with PRAYER LINE by specifying the IRQ 
  79.       number after the "config" parameter in the command line used to run
  80.       the door as follows: PRAYER PRAYER.CFG IRQ
  81.  
  82.   [4] LOCAL MODE:  PRAYER LINE can be run locally without a door data file 
  83.       (handy for the sysop to use the door without logging on to the BBS) 
  84.       by specifying /L after the configuration file parameter in the DOS 
  85.       command line.  PRAYER LINE will request the user to enter his name 
  86.       before running the door.
  87.  
  88.       Example:  PRAYER PRAYER.CFG /L
  89.  
  90.   [5] SPECIAL KEYS:  While a door is running, the sysop can press certain 
  91.       special keys to perform a variety of functions.  The following is a 
  92.       list of the functions that the PRAYER LINE special keys perform:
  93.  
  94.       Key(s)              Function
  95.  
  96.       HOME                Toggles between the user status window and a help
  97.                           display that lists the door special keys.
  98.  
  99.       F6                  Takes 5 minutes away from the caller.
  100.                           NOTE:  This will NOT be returned to BBS.
  101.  
  102.       F7                  Gives 5 minutes to the caller.
  103.                           NOTE:  This will NOT be returned to the BBS.
  104.  
  105.       F9                  Quit the door and return the caller to the BBS.
  106.  
  107.       F10                 Enter chat mode.  Pressing the ESC key exits the
  108.                           chat mode.
  109.  
  110.       Alt+D               Drop to DOS.
  111.  
  112.   -------------------------------------------------------------------------
  113.   
  114.   MULTI-NODE EXAMPLES
  115.  
  116.   PRAYER LINE should support the multi-node feature.  FIRST, you must have
  117.   the program SHARE.EXE run from your AUTOEXEC.BAT FILE!  If you do NOT 
  118.   have this installed, prior to running the BBS, it will NOT work!  It is
  119.   easy to config the game for this.  Just make TWO or MORE config files,
  120.   with different names, and call the program from the batch file that you
  121.   use for the doors in your BBS.  Here is a small example:
  122.  
  123.   Call the door config file for node 1:  PRAYER1.CFG
  124.   Call the door config file for node 2:  PRAYER2.CFG
  125.  
  126.   Run in your batch files like this:
  127.  
  128.   Node 1 -  PRAYER PRAYER1.CFG
  129.   Node 2 -  PRAYER PRAYER2.CFG
  130.  
  131.   -------------------------------------------------------------------------
  132.   
  133.   WARRANTY AND DISCLAIMER
  134.   
  135.   PRAYER LINE is distributed without warranty.  In no event will Ken 
  136.   Kirkley be liable to you for damages, including any loss of profits, lost
  137.   savings, or other incidental or consequential damages arising out of your
  138.   use of or inability to use the program, even if Ken Kirkley or an 
  139.   authorized representative has been advised of the possibility of such 
  140.   damages.  Ken Kirkley will not be liable for any such claim by any other
  141.   party.  PRAYER LINE is only guaranteed to take up room on your disk.  
  142.   There are no warranties, either expressed or implied, with respect to the
  143.   software, its quality, performance, usefulness, or fitness for any 
  144.   particular purpose.  This software is provided "AS IS" and the entire 
  145.   risk as to its quality and performance is with the user.  The author of 
  146.   this software shall not be liable for errors contained in the software or
  147.   the software's documentation, or for incidental or consequential damages
  148.   of any kind in connection with the performance, use, or possession  of 
  149.   this software.  
  150.  
  151.   -------------------------------------------------------------------------
  152.   
  153.   CREDITS
  154.   
  155.   This program was compiled using RMDoor by Randy Hunt and Mark Goodwin.
  156.   Turbo Pascal is a registered trademark of Borland International
  157.   MS-DOS is a registered trademark of Microsoft Corporation
  158.  
  159.   All other programs are copyright and/or trademarked by their respective 
  160.   authors unless otherwise noted.
  161.  
  162.   ------------------------------End Of Doc---------------------------------
  163.